home *** CD-ROM | disk | FTP | other *** search
/ Adobe Graphics & Publishing SDK 1996 December / Adobe Graphics & Publishing SDK 1996 December.iso / mac / PageMaker 6.5 SDK Mac / SourceCode / PageMakerClassLibrary / Commands / PPrintDoc.h < prev    next >
C/C++ Source or Header  |  1996-09-04  |  804b  |  43 lines

  1. /*
  2.  *--- PPrintDoc.h ---------------------------------------------------------
  3.  * Copyright (c) 1995-96 Adobe Systems Incorporated.  All rights reserved.
  4.  * Created on Sun, Oct 22, 1995 @ 4:19 PM by Paul Ferguson.
  5.  *
  6.  * Description:
  7.  *-------------------------------------------------------------------------
  8.  */
  9. #ifndef __PPrintDoc__
  10. #define __PPrintDoc__
  11.  
  12. #include "PMTypes.h"
  13.  
  14.  
  15. class PPrintDoc
  16. {
  17.  
  18. public:
  19.  
  20.     PPrintDoc
  21.       (    short            nCopies,
  22.           PMBool            bCollate,
  23.         PMBool            bReverse,
  24.         PMBool            bProof,
  25.         const char *    sRange,
  26.         PMBool            bBlank,
  27.         short            cPages,
  28.         PMBool            bIndependence,
  29.         PMBool            bBook,
  30.         PMBool            bBookSpec,
  31.         short            bOrientation,
  32.         PMBool            bSpreads,
  33.         PMBool            bIgnNonPrint );
  34.  
  35. private:
  36.  
  37.     PPrintDoc();
  38. };
  39.  
  40. #endif
  41.  
  42. // end of PPrintDoc.h
  43.